Description
Used to symbolize point features using one of the predefined symbol types: circle, square, cross, triangle, star, X, or diamond.
Diagram
Overview
|
SIMPLEMARKERSYMBOL
Used to symbolize point features using one of the predefined symbol types: circle, square, cross, triangle, star, X, or diamond.
|
angle optional
Marker angle.
|
|
color optional
Symbol color.
|
|
outline optional
Outline color.
|
|
outlinetype optional Restriction of xs:string
Outline type.
|
|
outlinewidth optional
Outline width in pixels.
|
|
width optional Restriction of xs:double
Symbol width in points.
|
|
type optional Restriction of xs:string
Symbol type.
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
angle | | optional | 0 | | Marker angle. |
color | | optional | 0,0,0 | | Symbol color. |
outline | | optional | 0,0,0 | | Outline color. |
outlinetype | Restriction of xs:string | optional | solid | | Outline type. |
outlinewidth | | optional | 0 | | Outline width in pixels. |
width | Restriction of xs:double | optional | 3 | | Symbol width in points. |
type | Restriction of xs:string | optional | circle | | Symbol type. |
Examples
Source
<xs:element name="SIMPLEMARKERSYMBOL" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Used to symbolize point features using one of the predefined symbol types: circle, square, cross, triangle, star, X, or diamond.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute default="0" name="angle">
<xs:annotation>
<xs:documentation>Marker angle.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute default="0,0,0" name="color">
<xs:annotation>
<xs:documentation>Symbol color.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute default="0,0,0" use="optional" name="outline">
<xs:annotation>
<xs:documentation>Outline color.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute default="solid" name="outlinetype">
<xs:annotation>
<xs:documentation>Outline type.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string" />
</xs:simpleType>
</xs:attribute>
<xs:attribute default="0" name="outlinewidth">
<xs:annotation>
<xs:documentation>Outline width in pixels.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute default="3" name="width">
<xs:annotation>
<xs:documentation>Symbol width in points.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:double">
<xs:minInclusive value="0.0" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="circle" name="type">
<xs:annotation>
<xs:documentation>Symbol type.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="circle" />
<xs:enumeration value="square" />
<xs:enumeration value="cross" />
<xs:enumeration value="triangle" />
<xs:enumeration value="star" />
<xs:enumeration value="x" />
<xs:enumeration value="diamond" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
|
See Also